![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A fork of backbone designed for use with lodash and browserify.
npm install backdash
backbone.js
Line 20 changed from:
var _ = require('underscore');
to:
var _ = require('lodash');
package.json
Line 8 changed from:
"underscore" : ">=1.5.0"
to:
"lodash": "2.4.1"
This version of backdash is based on Backbone 1.1.2 and Lodash 2.4.1
Use those versions explicitly in any other module that will build into the target project. Multiple versions of lodash in the dependency tree will cause multiple versions to appear in the built browserify bundle.
Also, it is helpful to run npm dedupe
after adding modules to the project in order to optimize files within node_modules
and, consequently, during dependency resolution at build.
First, install lodash and backdash:
npm install lodash
npm install backdash
Then, in each model
/collection
/view
/router
, use exactly like Backbone
var _ = require('lodash');
var B = require('backdash');
var ContentView = B.View.extend({
...
});
As before, lodash and jQuery (or an api-compatible library such as Zepto) must exist on the window
(or, as called in backbone source, root
). When building with browserify, the easiest solution is to either:
B.$ = global.$;
immediately after the first require('backdash')
(likely in the entry file used to build the project)require('jquery')
before you first require('backdash')
FAQs
backbone js with lodash, ready for browserify
We found that backdash demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.